home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Adobe Air 1.5
/
AdobeAIRInstaller.exe
/
setup.swf
/
scripts
/
components
/
OSButtonBarHBox.as
< prev
Wrap
Text File
|
2008-10-29
|
573b
|
26 lines
package components
{
import flash.display.DisplayObject;
import flash.system.Capabilities;
import mx.containers.HBox;
public class OSButtonBarHBox extends HBox
{
public function OSButtonBarHBox()
{
super();
}
override public function getChildAt(param1:int) : DisplayObject
{
if(Capabilities.os.indexOf("Mac") >= 0)
{
return super.getChildAt(numChildren - (param1 + 1));
}
return super.getChildAt(param1);
}
}
}